home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.001 / crossfir~ / eutl / dynarray / Makefile < prev    next >
Makefile  |  1994-09-19  |  302b  |  22 lines

  1. ODIR=.
  2. LIBFILES= dynarray.o
  3. CC=gcc
  4. CFLAGS=-g -I../include
  5.  
  6. arlib: $(LIBFILES)
  7.  
  8. clean:
  9.     -rm *.o core *\~ test1
  10.  
  11. check: arlib dotest1
  12.  
  13. test1: test1.o dynarray.o
  14.     $(CC) $(CFLAGS) -o test1 dynarray.o test1.o -L.. -leutl
  15.  
  16. dotest1: test1 FORCE
  17.     @echo "Running Test 1"
  18.     ./test1
  19.     @echo "Test 1 passed"
  20.  
  21. FORCE:
  22.